home *** CD-ROM | disk | FTP | other *** search
- class mainContainer.MainContainer extends MovieClip
- {
- var sndCtrl;
- function MainContainer()
- {
- super();
- _global.gameClock = new clock.Clock();
- _global.resetTime = new Array(0,0,0);
- _global.score = 0;
- _global.resetScore = 0;
- this.loadMV("mainPage");
- this.sndCtrl = new soundManage.SoundManage();
- }
- function loadMV(MV)
- {
- this.attachMovie(MV,MV,0);
- }
- function lose()
- {
- this.attachMovie("lose","lose",this.getNextHighestDepth());
- }
- }
-